home *** CD-ROM | disk | FTP | other *** search
/ The See Clearly Method / TheSeeClearlyMethod.iso / Media / howtogetstarted.dir / 00022_Script_FW Hold on Current Frame < prev    next >
Text File  |  2002-05-14  |  409b  |  23 lines

  1.  
  2. -- HISTORY --
  3.  
  4. -- 3 November, written for the D7 Behaviors Palette by James Newton
  5. -- 5 January   2000: updated to D8 <km>
  6. -- 5 March   2000: Updated to be D7 and D8 compatible for Fireworks Importer <jba>
  7.  
  8.  
  9.  
  10. on exitFrame me
  11. go the frame
  12. end exitFrame
  13.  
  14.  
  15. on isOKToAttach (me, aSpriteType, aSpriteNum)
  16.  
  17. tIsOk = 0  
  18. if aSpriteType = #script then   
  19. tIsOK = 1
  20. end if
  21.  
  22. return(tIsOK)  
  23. end on